@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    box-sizing: border-box
}
html {
    scroll-behavior: smooth;
  }

body {
    font-family: Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}    
.header-section {
    width: 100%;
    padding: 0;
    margin: 0;
  }
.header-section {
    background-color: #fff;
    width: 100%;
    padding-bottom: 24px; /* add some padding to create space around the logo */
  }
header .header-section{
    position: fixed;
}
header .header-section a{
    display: flex;
    flex-direction: row;
    text-decoration: none;
    text-align:left;
    color: black;
}
header .header-section a img{
    width: 80px;
}

header .header-section a h1{
    margin-left: -5px;
    font-size: 18px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
nav {
    top: 100px;
    position: relative;
    position: sticky;
    overflow-x: auto;
    background-color: #003399;
    color: white;
    padding: 10px 0;
}

nav ul {
    padding: 0 1rem;
    display: flex;
    justify-content: space-around;
    margin: 0;
    padding: 0;
}

nav ul button {
    max-width: 550px;
    gap: 0.75rem;
    padding: 0.75rem 0.7rem;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 0.4rem 0.75rem;
    background: none;
    border: none;
}

nav ul button a{
    text-decoration: none;
    color: white;
}
.body-section{
    margin-top: 120px;
    display: flex;
}

aside {
    max-height: 900px;
    overflow-y: auto;
    scrollbar-width: none;
    flex: 1;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


aside h2 {
    margin-top: 0;
}

aside ul {
    border-left: 3px solid black ;
    list-style: none;
    padding-left: 20px;
}

aside ul a{
    text-decoration: none;
    color: black;
}
aside ul li {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.75rem 0.7rem;
    scrollbar-width: none;
}
.menu-button {
    position:sticky;
    position: fixed;
    color: black;
    font-size: 22px;
    cursor: pointer;
    display: none;
    height: 40px;
    background: #003399;
    color: #fff;
    margin-top: -83px;
    margin-left: 4px;
    padding: 14px;
    padding-bottom: 45px;
}
/*  */


@media screen and (max-width: 1090px) {
    main{
        padding: 70px;
    }
    main .content{
        border: 4px solid #00A916;;
        padding:20px;
    }
}
@media screen and (max-width: 992px) {
    main{
        
        margin-left: 0px;
    }
    .body-section{
        display: block;
    }
    nav{
        margin-left: 57px;
    }
    #click:checked ~ .menu-btn li::before{
      content: '\f0c9';
    }
    .menu-button {
        display: block;
    }
    #menu-aside {
        display: none; /* hide the aside section by default */
      }
      
      #menu-aside.open {
        display: block; /* show the aside section when the button is clicked */
      }#menu-aside {
        display: none; /* hide the aside section by default */
        position: fixed;
      }
    aside {
        position: fixed;
        /* display: none;  */
        /* margin-top: -20px; */
        max-height: 750px;
        background-color: #f4f4f4;
        padding: 20px;
        width: 280px;
        position: absolute;
        left: 0;
        /* top: 50px; Adjust according to navbar height */
        height: calc(100% - 50px);
        overflow-y: auto;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
}
@media screen and (max-width:768px){
    main h1{
        font-size: 36px;
    } 
     main{
        padding: 20px;
    }
    aside{
        margin: -10px 0px;
        max-height: 600px;
    }
    }